.inspiration-name {
    max-width: 100%;
    word-break: break-word;
    font-size: 2rem;
}

@media (max-width: 600px) {
    .inspiration-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
    }
    .inspiration-name {
        font-size: 1.3rem;
        padding: 0 8px;
        text-align: center;
        writing-mode: initial;
        max-width: 100%;
        margin-bottom: 12px;
        margin-top: 0;
        letter-spacing: 1px;
        white-space: normal;
        word-break: break-word;
    }
}
.inspiration-header {
    background: linear-gradient(90deg, #ff6a00 0%, #ff3576 100%);
    color: #fff;
    padding: 48px 0 32px 0;
    text-align: center;
    margin-bottom: 0;
    border-bottom: 4px solid #ff3576;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.inspiration-header h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 1px 1px 8px #ff3576, 0 2px 8px #ff6a00;
}

.inspiration-content {
    background: #fff;
    min-height: 100vh; /* Full viewport height */
    display: flex; 
    align-items: center;
    justify-content: center;
    padding: 0; /* Remove extra padding for perfect centering */
}
.inspiration-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px; /* Increased from 1000px */
}
.inspiration-profile {
    display: flex;
    flex-direction: column;
    align-items: center; /* Change from stretch to center */
    justify-content: center; /* Add this line */
    gap: 40px;
}
.inspiration-row {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-start; /* Ensure content starts from the left */
    text-align: left; /* Prevent heading from centering */
}

.inspiration-img-wrapper {
    align-items: flex-start; /* Align image to the top/left */
    margin-bottom: 0; /* Remove extra space below image */
    width: auto; /* Remove width: 115% */
    max-width: 200px; /* Set a reasonable max-width for the image */
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.inspiration-img {
    width: 320px;
    height: 320px;
    max-width: 100%;
    min-height: unset;
    border-radius: 50%; /* Make image circular */
    border: 8px solid #ff6a00;
    background: #fff0e6;
    object-fit: cover;
    box-shadow: 0 6px 32px rgba(255, 53, 118, 0.14), 0 2px 12px rgba(255, 106, 0, 0.12);
    transition: box-shadow 0.3s, border-color 0.3s;
    display: block;
    margin: 0 auto;
}
.inspiration-img:hover {
    box-shadow: 0 8px 32px rgba(255, 53, 118, 0.22), 0 4px 16px rgba(255, 106, 0, 0.18);
    border-color: #ff3576;
}
.img-caption {
    margin-top: 16px;
    font-size: 1.2rem;
    color: #ff3576;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px #fff, 0 1px 0 #ff6a00;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.inspiration-details {
    text-align: left;
    background: linear-gradient(90deg, #fff0e6 0%, #ffe6f0 100%);
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 2px 12px rgba(255, 53, 118, 0.08);
    max-width: 800px;
    width: 70%;
    margin: 0 auto;
}
.inspiration-details h2 {
    color: #ff6a00;
    margin-bottom: 14px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px #fff, 0 1px 0 #ff3576;
}
.section-subheading {
    color: #ff3576;
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px #fff, 0 1px 0 #ff6a00;
}
.inspiration-details p {
    font-size: 1.13rem;
    color: #340204;
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 18px;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.inspiration-name {
    font-size: 3.2rem; /* Increased size */
    color: #ff3576;
    font-weight: 900;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 12px #fff0e6, 0 2px 12px #ff6a00;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    font-size: 2rem; /* Adjust as needed */
}
.inspiration-portrait {
    display: block;
    margin: 0 auto 20px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}
@media (min-width: 900px) {
    .inspiration-content {
        padding: 80px 0 80px 0;
    }
    .inspiration-content .container {
        max-width: 1200px; /* Increased from 1000px */
    }
    .inspiration-profile {
        flex-direction: row;
        align-items: center; /* Change from flex-start to center */
        justify-content: center; /* Ensure this is present */
        gap: 64px;
    }
    .inspiration-img-wrapper {
        min-width: 340px;
    }
    .inspiration-details {
        text-align: left;
        max-width: 1000px;
        padding: 40px 48px;
    }
}